home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / dt / sperm.zip / SPERM.RC < prev    next >
Text File  |  1992-12-20  |  2KB  |  36 lines

  1. //
  2. // SPERM - swimming sperm resources
  3. //
  4. // Version 1.0 12/18/92 Copyright (C) 1992 Hutchins Software
  5. // Author: Edward Hutchins
  6. // Revisions:
  7. //
  8.  
  9. #include <windows.h>
  10. #include "sperm.h"
  11.  
  12. IDI_SPERM ICON "sperm.ico"
  13.  
  14. //
  15. // setup dialog
  16. //
  17.  
  18. DIALOGBOX DIALOG LOADONCALL MOVEABLE DISCARDABLE 16, -32, 110, 130
  19. STYLE WS_DLGFRAME | WS_POPUP
  20. {
  21.     CTEXT           "Sperm!",                           -1, 0, 10, 110, 8
  22.     CTEXT           "Version 1.0",                      -1, 0, 20, 110, 8
  23.     CTEXT           "Copyright ⌐ 1992",                 -1, 0, 30, 110, 8
  24.     CTEXT           "Hutchins Software",                -1, 0, 40, 110, 8
  25.     CTEXT           "This program is freeware",         -1, 0, 50, 110, 8
  26.     CTEXT           "Author: Edward Hutchins",          -1, 0, 60, 110, 8
  27.     CTEXT           "eah1@cec1.wustl.edu",              -1, 0, 70, 110, 8
  28.     ICON            IDI_SPERM,                          -1, 8, 8, 0, 0
  29.     CONTROL         "Sperm Count:",                     -1, "static", SS_LEFT | WS_CHILD, 10, 84, 50, 8
  30.     CONTROL         "",                                 IDD_S_SPERMCNT, "edit", ES_LEFT | WS_BORDER | WS_TABSTOP | WS_CHILD, 65, 82, 30, 12
  31.     CONTROL         "Blank",                            IDD_S_BLANK,    "button", BS_AUTO3STATE | WS_TABSTOP | WS_CHILD, 10, 100, 40, 12
  32.     CONTROL         "Enabled",                          IDD_S_ENABLE,   "button", BS_AUTOCHECKBOX | WS_TABSTOP | WS_CHILD, 65, 100, 40, 12
  33.     DEFPUSHBUTTON   "Ok!",                              IDOK,           10, 116, 30, 12
  34.     CONTROL         "Cancel",                           IDCANCEL,       "button", BS_PUSHBUTTON | WS_TABSTOP | WS_CHILD, 65, 116, 30, 12
  35. }
  36.